home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 14 / 014.d81 / t.xdos boot < prev    next >
Text File  |  2022-08-26  |  3KB  |  150 lines

  1.  
  2.          ***** XDOS *****
  3.  
  4.  
  5.  
  6. Written by:  C.D. Lane
  7.  
  8.  
  9. User Extendable Disk Operating System
  10. Microcomputers Magazine, August 1985
  11. Page 50
  12.  
  13.  
  14.  XDOS allows you to create almost any
  15.  
  16. type of disk routine you would like.
  17.  
  18. Its commands are defined as BASIC
  19.  
  20. programs, that the user writes, on
  21.  
  22. the disk.  XDOS allows passing
  23.  
  24. variables to the BASIC programs as
  25.  
  26. well as a specified LIST feature.
  27.  
  28.  XDOS commands are entered as follows:
  29.  
  30.  
  31. & COMMAND  var1 var2 var3 var4 ...
  32.            var8 var9 var10
  33.  
  34.  
  35. Please note that the magazine says to
  36.  
  37. use "_" and not "&".  Due to a
  38.  
  39. conflict with FAST LOAD and the DOS
  40.  
  41. Wedge ("_" is the wedge symbol to
  42.  
  43. save a file), we have changed the
  44.  
  45. macro from "_" to "&".
  46.  
  47.   A sample XDOS BASIC program might
  48.  
  49. look like this:
  50.  
  51. 10 REM XDOS:SCRATCH
  52. 20 OPEN15,8,15,"S0:"+ARG$(1)
  53. 30 CLOSE15
  54.  
  55. This would allow you to scratch a file
  56.  
  57. on the disk drive and you would access
  58.  
  59. it like this:
  60.  
  61. & SCRATCH filename
  62.  
  63.   With XDOS, you can create any type
  64.  
  65. of DOS command short-cut you would
  66.  
  67. like.  It should be noted that the
  68.  
  69. first line of any of your BASIC
  70.  
  71. programs must be of the form:
  72.  
  73. 10 REM XDOS:program name
  74.  
  75.   XDOS also has the ability to perform
  76.  
  77. a modified LIST of the directory.  By
  78.  
  79. typing '& $', you can view the whole
  80.  
  81. directory.  You can also use wildcards
  82.  
  83. or pattern matching.
  84.  
  85.   The XDOS commands that are written
  86.  
  87. in BASIC load into BASIC memory space,
  88.  
  89. therefore replacing whatever program
  90.  
  91. was already in memory.  In other
  92.  
  93. words, you should SAVE any program you
  94.  
  95. are working on before using XDOS.
  96.  
  97.   Included on this issue of LOADSTAR
  98.  
  99. are these files:
  100.  
  101. XDOS.DELETE -- allows XDOS to scratch
  102.                up to 10 files
  103.  
  104. XDOS.TYPE   -- allows XDOS to read a
  105.                SEQ file and print it
  106.                to the screen--up to
  107.                10 files can be used
  108.  
  109. XDOS.ECHO   -- prints all current
  110.                values of XDOS
  111.                variables
  112.  
  113. XDOS.CREATOR - allows you to create a
  114.                version of XDOS on your
  115.                own disks.
  116.  
  117.  
  118.  *** NOTE ***
  119.  
  120.  When the XDOS.CREATOR is RUN, you
  121.  
  122. need to have a formatted disk on hand.
  123.  
  124.  
  125.    This program is copyrighted by
  126.  
  127. Microcomputers magazine. All rights to
  128.  
  129.          it are reserved.
  130.  
  131.        LOADSTAR has relieved
  132.  
  133. you from the burden of keying in this
  134.  
  135.     program.  For more complete
  136.  
  137. information about this program, refer
  138.  
  139. to the August 1985 issue of Commodore
  140.  
  141.       Microcomputers Magazine.
  142.  
  143.  
  144. >Files used: XDOS.CREATOR
  145.              XDOS.DELETE
  146.              XDOS.TYPE
  147.              XDOS.ECHO
  148.  
  149. --------------------------------------
  150.